home *** CD-ROM | disk | FTP | other *** search
/ Interactive Media Design Review 1999 / Interactive Media Design Review 1999.iso / pc / allfiles / angry / scene1_2.dir / 00025_Script_nipples GOTO < prev    next >
Text File  |  1999-03-01  |  424b  |  25 lines

  1. --FRAME: nipples
  2. on enterFrame
  3.   
  4.   if rollOver(5) then --left nipple
  5.     nothing
  6.   end if
  7.   if rollOver(6) then --right nipple
  8.     nothing    
  9.   end if
  10.   
  11.   if soundbusy(1) then go to the frame
  12.   else
  13.     if NOT rollover(5) AND NOT rollover(6) then 
  14.       go to frame "guyOff"
  15.       set the member of sprite(7) to member "guy_walk1"
  16.     end if
  17.   end if
  18.   
  19.   
  20. end
  21.  
  22.  
  23. on exitFrame
  24.   go to the frame
  25. end